Comment
Java field-friendly version of TomlComment
Adds comments to corresponding property.
class IntData(
@TomlComment("""
An integer,
but is decoded into Long originally
""")
val int: Int
)
IntData(10086)
Content copied to clipboard
will produce:
# An integer,
# but is decoded into Long originally
int = 10086
Content copied to clipboard
Author
fzzyhmstrs
Since
0.2.0